home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / docs / misc / MemManual.lha / MemManual / Include / memory / memalerts.h next >
Encoding:
C/C++ Source or Header  |  2002-01-30  |  1.4 KB  |  33 lines

  1. /*****************************************************************
  2.  ** The memory.library                                          **
  3.  **                                                             **
  4.  ** A mmu lib based virtual memory application                  **
  5.  **                                                             **
  6.  ** © 2002 THOR-Software                                        **
  7.  **                                                             **
  8.  **-------------------------------------------------------------**
  9.  ** Module: alert code definitions for the memory.library       **
  10.  ** Release 40.1        29.01.2002                              **
  11.  *****************************************************************/
  12.  
  13. #ifndef MEMORY_MEMALERTS_H
  14. #define MEMORY_MEMALERTS_H
  15.  
  16. #define AN_MEMLib       0x3d000000
  17.  
  18. #define AN_MEMPageSetup 0xbd000001      /* unexpected error on low-level page modification */
  19.  
  20. #define AN_MEMQpkt      0xbd000002      /* swap daemon command queue-packet failure */
  21.  
  22. #define AN_MEMCtxtInv   0xbd000003      /* found an invalid/unhandled context */
  23.  
  24. #define AN_MEMCmdInv    0xbd000004      /* invalid command to swap daemon */
  25.  
  26. #define AN_MEMInvFree   0xbd000005      /* invalid freemem */
  27.  
  28. #define AN_MEMFreeFail  0x3d000006      /* releasing a memory pool failed */
  29.  
  30. #define AN_MEMDupKey    0xbd000007      /* found duplicate key */
  31.  
  32. #endif
  33.